home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 1 / PC Actual CD 01.iso / f1 / cimb.arj / MENU.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-04  |  1.1 KB  |  48 lines

  1. /*==============================================================================
  2.  
  3. FICHERO: MENU.H
  4.  
  5. AUTOR: ANTONIO LADESA JURADO
  6.  
  7. FECHA: 24/6/94
  8.  
  9. DESCRIPCION:
  10.  
  11.     Fichero de cabecera del módulo MENU.C
  12.  
  13.     Declara las funciones de control y visualización de los menus ofrecidas por
  14.     dicho módulo.
  15.  
  16. ==============================================================================*/
  17.  
  18.     /* Leer opción del menu */
  19. extern int MENUopcion(struct ACCION *accion);
  20.  
  21.     /* Poner menu principal */
  22. extern void MENUponer(void);
  23.  
  24.     /* inicializar menu principal*/
  25. extern int MENUinicio(void);
  26.  
  27.     /* menu de impresión */
  28. extern int MENUimprimirPoner(int *tipo, char *nombre);
  29.  
  30.     /* menu de selección de memoria */
  31. extern int MENUmemoriaPoner(void);
  32.  
  33.     /* menu de dihering */
  34. extern int MENUByNPoner(void);
  35.  
  36.     /* menu de escalado */
  37. extern int MENUescalaPoner(int *factorx,int *factory);
  38.  
  39.     /* menu de escalado de colores */
  40. extern int MENUcoloresPoner(int *colores);
  41.  
  42.     /* menu de operaciones con ficheros DOS */
  43. extern void MENUficheroDOS(char *fichero,int opc);
  44.  
  45.     /* menu de confirmación */
  46. extern int MENUconfirmar(char *texto1,char *texto2,char *mensaje);
  47.  
  48.